home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Clickx 115
/
Clickx 115.iso
/
software
/
tools
/
windows
/
tails-i386-0.16.iso
/
live
/
filesystem.squashfs
/
var
/
lib
/
dpkg
/
info
/
module-init-tools.postrm
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2012-01-22
|
440 b
|
29 lines
#!/bin/sh -e
remove_etc_files() {
rm -f /etc/modules
}
case "$1" in
purge)
remove_etc_files
;;
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
;;
*)
echo "$0 called with unknown argument '$1'" >&2
exit 1
;;
esac
# Automatically added by dh_installinit
if [ "$1" = "purge" ] ; then
update-rc.d module-init-tools remove >/dev/null
fi
# End automatically added section
exit 0